home *** CD-ROM | disk | FTP | other *** search
/ IRIX Installation Tools & Overlays 2002 November / SGI IRIX Installation Tools & Overlays 2002 November - Disc 4.iso / dist / motif21_dev.idb / usr / Motif-2.1 / include / Xm / JoinSideT.h.z / JoinSideT.h
C/C++ Source or Header  |  2002-10-15  |  1KB  |  48 lines

  1. /* $XConsortium: JoinSideT.h /main/5 1995/07/15 20:52:34 drk $ */
  2. /*
  3.  *  @OSF_COPYRIGHT@
  4.  *  COPYRIGHT NOTICE
  5.  *  Copyright (c) 1990, 1991, 1992, 1993 Open Software Foundation, Inc.
  6.  *  ALL RIGHTS RESERVED (MOTIF). See the file named COPYRIGHT.MOTIF for
  7.  *  the full copyright text.
  8.  */
  9. /*
  10.  * HISTORY
  11.  */
  12. #ifndef _XmJoinSideT_H
  13. #define _XmJoinSideT_H
  14.  
  15. #include <Xm/Xm.h>
  16.  
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20.  
  21. externalref XrmQuark XmQTjoinSide;
  22.  
  23. /* Trait structures and typedefs, place typedefs first */
  24.  
  25. typedef void (*XmJoinSideSetValueProc)(Widget tab,
  26.                        unsigned char join_side, 
  27.                        Dimension join_thickness) ;
  28. typedef unsigned char (*XmJoinSideGetValueProc)(Widget tab,
  29.                         Dimension * join_thickness);
  30.  
  31.  
  32. /* Version 0: initial release. */
  33.  
  34. typedef struct _XmJoinSideTraitRec {
  35.   int             version;    /* 0 */
  36.   XmJoinSideSetValueProc setValue;
  37.   XmJoinSideGetValueProc getValue;
  38. } XmJoinSideTraitRec, *XmJoinSideTrait;
  39.  
  40. enum {/* XmNONE already defined in Xm.h */ 
  41.      XmLEFT = 1, XmRIGHT, XmTOP, XmBOTTOM} ;
  42.  
  43. #ifdef __cplusplus
  44. }  /* Close scope of 'extern "C"' declaration which encloses file. */
  45. #endif
  46.  
  47. #endif /* _XmJoinSideT_H */
  48.